home *** CD-ROM | disk | FTP | other *** search
Text File | 1986-12-29 | 654 b | 38 lines | [TEXT/MPS ] |
- {Copyright © 1986 by Apple Computer, Inc. All Rights Reserved.}
-
- PROGRAM DemoText;
-
- USES
- {$LOAD MacIntf.LOAD}
- MemTypes, QuickDraw, OSIntf, ToolIntf, PackIntf,
- {$LOAD UMacApp.LOAD}
- UObject, UList, UMacApp,
- {$LOAD}
-
- UPrinting,
-
- UTEView,
-
- UDemoText;
-
-
- VAR
- gDemoTextApplication: TDemoTextApplication;
-
-
- {$S ARes}
- PROCEDURE InAResSegment;
-
- BEGIN
- END;
-
- {$S Main}
- BEGIN
- InitToolbox(8); {Initialize the ToolBox, 8 calls to MoreMasters}
- InitPrinting; {Initialize the Printing unit}
- SetResidentSegment(GetSegNumber(@InAResSegment), TRUE);
- New(gDemoTextApplication);
- gDemoTextApplication.IDemoTextApplication;
- gDemoTextApplication.Run;
- END.
-